# randomize author order
aut <- c('Marcus Beck', 'Kirsten Dorans', 'Jessica Renee Henkel', 'Kathryn Ireland', 'Ed Sherwood', 'Patricia Varela') %>%
sample %>%
paste(collapse = ', ')
cat('By', aut)
By Jessica Renee Henkel, Kathryn Ireland, Kirsten Dorans, Ed Sherwood, Marcus Beck, Patricia Varela